<?php
if (is_category()) {
	echo '<h1 class="listhead">';
	_e("Category", "notesblog");
	echo ' <strong>';
	single_cat_title();
	echo '</strong></h1>';
} if (is_tag()) {
	echo '<h1 class="listhead">';
	_e("Tag", "notesblog");
	echo ' <strong>';
	single_tag_title();
	echo '</strong></h1>';
} if (is_search()) {
	echo '<h1 class="listhead">';
	_e("Your <strong>search result</strong>", "notesblog");
	echo '</h1>';
}
?>